home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 September / CHIP Eylül 1998.iso / Slackwar / contents / scripts / sysvinit < prev    next >
Text File  |  1997-06-06  |  608b  |  19 lines

  1. # OK, we've tried to make it so you can just dump this package in with 
  2. # "installpkg" to upgrade your system.  Maybe in the future we'll make more
  3. # packages upgradable where possible.
  4. if [ ! -r etc/rc.d/rc.local ]; then
  5.   mv etc/rc.d/rc.local.new etc/rc.d/rc.local
  6. fi
  7. if [ -r sbin/init ]; then
  8.   mv sbin/init tmp/init.old
  9. fi
  10. mv sbin/init.new sbin/init
  11. ( cd sbin ; rm -rf telinit )
  12. ( cd sbin ; ln -sf  init telinit )
  13. ( cd sbin ; rm -rf reboot )
  14. ( cd sbin ; ln -sf  halt reboot )
  15. ( cd etc/rc.d ; rm -rf rc.0 )
  16. ( cd etc/rc.d ; ln -sf rc.6 rc.0 )
  17. ( cd sbin ; rm -rf pidof )
  18. ( cd sbin ; ln -sf killall5 pidof )
  19.